home *** CD-ROM | disk | FTP | other *** search
/ Gigarom 1 / Gigarom Macintosh Archives (Quantum Leap)(CDRM1080320)(1993).iso / FILES / EXT / A-E / AutoCruise.cpt / AutoCruise ƒ / AutoCruise (Source) / Cruise.h < prev    next >
Text File  |  1989-10-07  |  818b  |  25 lines

  1. /* Delta.res.h */
  2.  
  3. typedef    int        FixFlot;    /* 3 bits of floating accuracy    */
  4.  
  5. typedef struct
  6.     {
  7.     ProcPtr        OldCrsrTask;    /* original jCrsrTask        */
  8.     FixFlot        Velh;            /* Velocity components        */
  9.     FixFlot        Velv;
  10.     FixFlot        Prevh;            /* last floating position    */
  11.     FixFlot        Prevv;
  12.     int            PrevInth;        /* last clipped position    */
  13.     int            PrevIntv;
  14.     long        LastTimeh;        /* last time the integer coord changed */
  15.     long        LastTimev;
  16.     } crsrTaskVars,*crsrTaskVarsP;
  17.     
  18. extern ProcPtr    jCrsrTask : 0x08EE;
  19. extern Point    MTemp : 0x0828;        /* Low Level interupt mouse location */
  20. extern Point    RawMouse : 0x082C;    /* unprocessed mouse location    */
  21. extern Point    Mouse : 0x830;        /* processed mouse location        */
  22. extern char        CrsrNew : 0x08CE;    /* set !=0 if mouse has moved    */
  23. extern char        CrsrCouple : 0x08CF; /* set =0 if cursor not allowed to move */
  24.  
  25.